Correctness of the previous modification, regarding how to pass arguments via Cargo
class="s1"> Running</span> `target/debug/hello_world`
Hello, world!</code></pre>
-If you want to pass some arguments to your program, please use `cargo run -- first_argument second_argument`.
+To pass some arguments to your program, you can use `cargo run first_argument second_argument`. If flags are being passed to the command being invoked, please to use `cargo run -- --a_flag -b an_argument`.
You'll now notice a new file, `Cargo.lock`. It contains information about our
dependencies. Since we don't have any yet, it's not very interesting.